* net/tramp-gvfs.el (top): Use timeout of 100 msec pinging GVFS
authorMichael Albinus <michael.albinus@gmx.de>
Tue, 25 Aug 2009 10:24:25 +0000 (10:24 +0000)
committerMichael Albinus <michael.albinus@gmx.de>
Tue, 25 Aug 2009 10:24:25 +0000 (10:24 +0000)
daemon.  Replace ping by checking for running service for bluez
and zeroconf.  (Bug#4239)

lisp/net/tramp-gvfs.el

index 3091197cad8247a926a0b4a2899c06ddb07f5663..8ef65459cb752a75ab5186a3ed6587285312e1f0 100644 (file)
   "The well known name of the GVFS daemon.")
 
 ;; Check that GVFS is available.
-(unless (dbus-ping :session tramp-gvfs-service-daemon)
+(unless (dbus-ping :session tramp-gvfs-service-daemon 100)
   (throw 'tramp-loading nil))
 
 (defconst tramp-gvfs-path-mounttracker "/org/gtk/vfs/mounttracker"
@@ -1177,7 +1177,7 @@ be used."
    (tramp-bluez-list-devices)))
 
 ;; Add completion function for OBEX method.
-(when (dbus-ping :system tramp-bluez-service)
+(when (member tramp-bluez-service (dbus-list-known-names :system))
   (tramp-set-completion-function
    "obex" '((tramp-bluez-parse-device-names ""))))
 
@@ -1210,7 +1210,7 @@ be used."
    (zeroconf-list-services "_webdav._tcp")))
 
 ;; Add completion function for DAV and DAVS methods.
-(when (dbus-ping :system zeroconf-service-avahi)
+(when (member zeroconf-service-avahi (dbus-list-known-names :system))
   (zeroconf-init tramp-gvfs-zeroconf-domain)
   (tramp-set-completion-function
    "sftp" '((tramp-zeroconf-parse-workstation-device-names "")))